home *** CD-ROM | disk | FTP | other *** search
/ Mac Magazin/MacEasy 127 / maccd 127.iso / software / urlwell.sit / URLwell / URLwell.app / Contents / Resources / UWStatusView.h < prev   
Encoding:
Text File  |  2005-02-23  |  471 b   |  29 lines

  1. //
  2. //  UWStatusView.h
  3. //  URLwell
  4. //
  5. //  Created by endian on 10.2.05.
  6. //  Copyright (c) 2005 Enigmarelle Development. All rights reserved.
  7. //
  8.  
  9. #import <AppKit/AppKit.h>
  10.  
  11.  
  12. @interface UWStatusView : NSView 
  13. {
  14.     NSImageCell *myCell;
  15.     id myDelegate;
  16.     NSMenu *myStatusMenu;
  17.     
  18.     BOOL isMouseDown;
  19.     NSImage *menuIcon;
  20. }
  21.  
  22. -(NSPoint)globalOrigin;
  23. -(void)setStatusMenu:(NSMenu *)aMenu;
  24. -(NSMenu *)statusMenu;
  25. -(id)delegate;
  26. -(void)setDelegate:(id)aDelegate;
  27.  
  28. @end
  29.